home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Devices / Load PCI Driver / strings.r < prev   
Encoding:
Text File  |  1997-07-10  |  613 b   |  30 lines  |  [TEXT/CWIE]

  1. #include <types.r>
  2. #include <BalloonTypes.r>
  3. #define kIconHelpString 128
  4.  
  5. resource 'STR#' (1000, "Static Strings") {
  6.     {    /* array StringArray: 2 elements */
  7.         /* [1] */
  8.         "This program will load an 'NDRV' driver"
  9.         ". \n\n"
  10.         "Drag a driver into this window or click the 'Load Driver' button to load a driver.",
  11.         /* [2] */
  12.         "Load Driver",
  13.         /* [3] */
  14.         "Unload Driver"
  15.     }
  16. };
  17.  
  18. resource 'hfdr' (-5696,purgeable) {
  19.  
  20.     HelpMgrVersion,hmDefaultOptions,0,0,
  21.     {HMSTRResItem {kIconHelpString}}
  22. };
  23.  
  24. resource 'STR ' (kIconHelpString,purgeable) {
  25.     "PCI Driver Loader \n"
  26.     "\n"
  27.     "This program will load 'ndrv' drivers"
  28.     
  29.     
  30. };